home *** CD-ROM | disk | FTP | other *** search
- function check_ball()
- {
- if(Math.abs(_parent.ball_mov._x - (this._x + 37)) < 300)
- {
- return true;
- }
- return false;
- }
- function play_ball()
- {
- if(Math.abs(_parent.ball_mov._x - (this._x + 84)) < 80)
- {
- gotoAndStop("move_ball");
- play();
- }
- else if(_parent.ball_mov._x > this._x + 67)
- {
- gotoAndStop("move_forward");
- play();
- }
- else
- {
- gotoAndStop("move_backward");
- play();
- }
- }
- function c_check()
- {
- if(_root.last_bounce != 101 && _root.no_bounce != true)
- {
- _root.control_mov.bounce_helper();
- _root.last_bounce = 101;
- }
- }
- var first_time = true;
- hit_mov._visible = 0;
- stop();
-